home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmXCheck
- Caption = "The X-Check Buttons Program"
- ClientHeight = 3405
- ClientLeft = 1650
- ClientTop = 1830
- ClientWidth = 5625
- Height = 4095
- Icon = "XCHECK.frx":0000
- Left = 1590
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 3405
- ScaleWidth = 5625
- Top = 1200
- Width = 5745
- Begin VB.CommandButton cmdNameEntry
- Caption = "Display Name Entry Form..."
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 1
- weight = 400
- size = 12
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 975
- Left = 1200
- TabIndex = 0
- Top = 960
- Width = 3255
- End
- Begin VB.Menu mnuFile
- Caption = "&File"
- Begin VB.Menu mnuExit
- Caption = "E&xit"
- End
- End
- Begin VB.Menu mnuHelp
- Caption = "&Help"
- Begin VB.Menu mnuAbout
- Caption = "&About..."
- End
- End
- Attribute VB_Name = "frmXCheck"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub cmdNameEntry_Click()
- frmNameEntry.Show 1
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- End Sub
- Private Sub mnuAbout_Click()
- Dim Title
- Dim Msg
- Dim CR
- CR = Chr(13) + Chr(10)
- ' Prepare the title of the About message box.
- Title = "About the X-Check Program"
- Msg = "This program was written with Visual "
- Msg = Msg + "Basic for Windows, using the "
- Msg = Msg + "TegoSoft Check Button and TegoSoft "
- Msg = Msg + "X Button gadget OCX controls. "
- Msg = Msg + CR + CR
- Msg = Msg + "The TegoSoft Check Button and TegoSoft "
- Msg = Msg + "X Button gadget OCX controls "
- Msg = Msg + "are part of the TegoSoft OCX Control "
- Msg = Msg + "Kit - a collection of various OCX controls. "
- Msg = Msg + CR + CR
- Msg = Msg + "For more information about the "
- Msg = Msg + "TegoSoft OCX Control Kit, contact TegoSoft "
- Msg = Msg + "at:"
- Msg = Msg + CR + CR
- Msg = Msg + "TegoSoft Inc." + CR
- Msg = Msg + "P.O. Box 389" + CR
- Msg = Msg + "Bellmore, NY 11710"
- Msg = Msg + CR + CR
- Msg = Msg + "Phone: (516)783-4824"
- ' Display the About message box.
- MsgBox Msg, vbInformation, Title
- End Sub
- Private Sub mnuExit_Click()
- ' Terminate the program.
- Unload Me
- End Sub
-